home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
number
/
numbers.gbl
< prev
next >
Wrap
Text File
|
1991-10-03
|
917b
|
49 lines
'These routines replace Visual Basic's "missing"
'binary coded decimal and IEEE string/numeric
'conversion routines found in QuickBASIC 4.X
'as well as the BASIC PDS.
'
'These declares are required in the GLOBAL module
'of any program that use the MKL,MKI,MKS,MKD or
'CVD, CVI,CVL or CVD functions.
'
'Marquis Computing
'
DefInt A-Z
' used by CVL() & MKL()
Type NumL
Num As Long
End Type
Type StrL
S As String * 4
End Type
Global NumL As NumL, StrL As StrL
' used by CVI() & MKI()
Type NumI
Num As Long
End Type
Type StrI
S As String * 2
End Type
Global NumI As NumI, StrI As StrI
' used by CVS() & MKS()
Type NumS
Num As Single
End Type
Type StrS
S As String * 4
End Type
Global NumS As NumS, StrS As StrS
' used by CVD() & MKD()
Type NumD
Num As Double
End Type
Type StrD
S As String * 8
End Type
Global NumD As NumD, StrD As StrD